home *** CD-ROM | disk | FTP | other *** search
/ IRIX 6.5 Applications 2004 May / SGI IRIX 6.5 Applications 2004 May.iso / dist / java3d.idb / usr / demos / java / j3d / programs / examples / GeometryByReference / GeometryByReferenceTest.java.z / GeometryByReferenceTest.java
Encoding:
Java Source  |  2003-08-08  |  15.1 KB  |  548 lines

  1. /*
  2.  *    @(#)GeometryByReferenceTest.java 1.12 02/10/21 13:41:27
  3.  *
  4.  * Copyright (c) 1996-2002 Sun Microsystems, Inc. All Rights Reserved.
  5.  *
  6.  * Redistribution and use in source and binary forms, with or without
  7.  * modification, are permitted provided that the following conditions
  8.  * are met:
  9.  *
  10.  * - Redistributions of source code must retain the above copyright
  11.  *   notice, this list of conditions and the following disclaimer.
  12.  *
  13.  * - Redistribution in binary form must reproduce the above copyright
  14.  *   notice, this list of conditions and the following disclaimer in
  15.  *   the documentation and/or other materials provided with the
  16.  *   distribution.
  17.  *
  18.  * Neither the name of Sun Microsystems, Inc. or the names of
  19.  * contributors may be used to endorse or promote products derived
  20.  * from this software without specific prior written permission.
  21.  *
  22.  * This software is provided "AS IS," without a warranty of any
  23.  * kind. ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND
  24.  * WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY,
  25.  * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT, ARE HEREBY
  26.  * EXCLUDED. SUN AND ITS LICENSORS SHALL NOT BE LIABLE FOR ANY DAMAGES
  27.  * SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR
  28.  * DISTRIBUTING THE SOFTWARE OR ITS DERIVATIVES. IN NO EVENT WILL SUN
  29.  * OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR
  30.  * FOR DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL OR
  31.  * PUNITIVE DAMAGES, HOWEVER CAUSED AND REGARDLESS OF THE THEORY OF
  32.  * LIABILITY, ARISING OUT OF THE USE OF OR INABILITY TO USE SOFTWARE,
  33.  * EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
  34.  *
  35.  * You acknowledge that Software is not designed,licensed or intended
  36.  * for use in the design, construction, operation or maintenance of
  37.  * any nuclear facility.
  38.  */
  39.  
  40. import java.applet.Applet;
  41. import java.awt.*;
  42. import java.awt.event.*;
  43. import com.sun.j3d.utils.applet.MainFrame;
  44. import com.sun.j3d.utils.geometry.*;
  45. import com.sun.j3d.utils.universe.*;
  46. import javax.media.j3d.*;
  47. import javax.vecmath.*;
  48. import javax.swing.*;
  49. import javax.swing.event.*;
  50. import javax.swing.border.*;
  51. import com.sun.j3d.utils.behaviors.vp.*;
  52.  
  53. public class GeometryByReferenceTest extends JApplet implements ActionListener,
  54. GeometryUpdater {
  55.  
  56.     RenderingAttributes ra;
  57.     ColoringAttributes ca;
  58.     Material mat;               
  59.     Appearance app;               
  60.     JComboBox geomType;
  61.     JComboBox vertexType;
  62.     JComboBox colorType;
  63.     JCheckBox transparency;
  64.     JComboBox updates;
  65.     Shape3D shape;               
  66.     TransparencyAttributes transp;
  67.     int updateIndex = 0;
  68.     int colorCount = 0, vertexCount = 0;
  69.     int vertexIndex = 0, colorIndex = 0;
  70.     
  71.     GeometryArray tetraRegular, tetraStrip, tetraIndexed, tetraIndexedStrip;
  72.     GeometryArray[] geoArrays = new GeometryArray[4];           
  73.  
  74.     private static final float sqrt3 = (float) Math.sqrt(3.0);
  75.     private static final float sqrt3_3 = sqrt3 / 3.0f;
  76.     private static final float sqrt24_3 = (float) Math.sqrt(24.0) / 3.0f;
  77.  
  78.     private static final float ycenter = 0.5f * sqrt24_3;
  79.     private static final float zcenter = -sqrt3_3;
  80.  
  81.     private static final Point3f p1 = 
  82.     new Point3f(-1.0f, -ycenter, -zcenter);
  83.     private static final Point3f p2 = 
  84.     new Point3f(1.0f, -ycenter, -zcenter);
  85.     private static final Point3f p3 =
  86.     new Point3f(0.0f, -ycenter, -sqrt3 - zcenter);
  87.     private static final Point3f p4 =
  88.     new Point3f(0.0f, sqrt24_3 - ycenter, 0.0f);
  89.  
  90.  
  91.     private static final float[] floatVerts = {
  92.     p1.x, p1.y, p1.z, // front face
  93.     p2.x, p2.y, p2.z,
  94.     p4.x, p4.y, p4.z,
  95.     
  96.     p1.x, p1.y, p1.z,// left, back face
  97.     p4.x, p4.y, p4.z,
  98.     p3.x, p3.y, p3.z,
  99.     
  100.     p2.x, p2.y, p2.z,// right, back face
  101.     p3.x, p3.y, p3.z,
  102.     p4.x, p4.y, p4.z,
  103.     
  104.     p1.x, p1.y, p1.z,// bottom face
  105.     p3.x, p3.y, p3.z,
  106.     p2.x, p2.y, p2.z,
  107.     };
  108.     
  109.     private static final Color3f c1 = new Color3f(0.6f, 0.0f, 0.0f);
  110.     private static final Color3f c2 = new Color3f(0.0f, 0.6f, 0.0f);
  111.     private static final Color3f c3 = new Color3f(0.0f, 0.6f, 0.6f);
  112.     private static final Color3f c4 = new Color3f(0.6f, 0.6f, 0.0f);
  113.  
  114.  
  115.     private static final float[] floatClrs = {
  116.     c1.x, c1.y, c1.z, // front face
  117.     c2.x, c2.y, c2.z,
  118.     c4.x, c4.y, c4.z,
  119.     
  120.     c1.x, c1.y, c1.z,// left, back face
  121.     c4.x, c4.y, c4.z,
  122.     c3.x, c3.y, c3.z,
  123.     
  124.     c2.x, c2.y, c2.z,// right, back face
  125.     c3.x, c3.y, c3.z,
  126.     c4.x, c4.y, c4.z,
  127.     
  128.     c1.x, c1.y, c1.z,// bottom face
  129.     c3.x, c3.y, c3.z,
  130.     c2.x, c2.y, c2.z,
  131.     }    ;
  132.  
  133.     private static final float[] indexedFloatVerts = {
  134.     p1.x,p1.y,p1.z,
  135.     p2.x,p2.y,p2.z,
  136.     p3.x,p3.y,p3.z,
  137.     p4.x,p4.y,p4.z,
  138.  
  139.     };
  140.     private static final float[] indexedFloatClrs = {
  141.     c1.x,c1.y,c1.z,
  142.     c2.x,c2.y,c2.z,
  143.     c3.x,c3.y,c3.z,
  144.     c4.x,c4.y,c4.z,
  145.     };
  146.    private static final Point3f[] p3fVerts = {
  147.     p1, p2, p4, p1, p4, p3, p2, p3, p4, p1, p3, p2};
  148.  
  149.     private static final Point3f[] indexedP3fVerts = {p1, p2, p3, p4};
  150.     
  151.     private static final Color3f[] c3fClrs = {
  152.     c1, c2, c4, c1, c4, c3, c2, c3, c4, c1, c3, c2};
  153.  
  154.     private static final Color3f[] indexedC3fClrs = {c1, c2, c3, c4};
  155.  
  156.     
  157.     private static final int[] indices = {0,1,3,0,3,2,1,2,3,0,2,1};
  158.     private int[] stripVertexCounts = {3,3,3,3};
  159.  
  160.     private SimpleUniverse u;
  161.  
  162.    BranchGroup createSceneGraph() {
  163.     BranchGroup objRoot = new BranchGroup();
  164.  
  165.     // Set up attributes to render lines
  166.         app = new Appearance();
  167.  
  168.     transp = new TransparencyAttributes();
  169.     transp.setTransparency(0.5f);
  170.     transp.setCapability(TransparencyAttributes.ALLOW_MODE_WRITE);
  171.     transp.setTransparencyMode(TransparencyAttributes.NONE);
  172.     app.setTransparencyAttributes(transp);
  173.     
  174.     tetraRegular = createGeometry(1);
  175.     tetraStrip =createGeometry(2);
  176.     tetraIndexed = createGeometry(3);
  177.     tetraIndexedStrip = createGeometry(4);
  178.  
  179.     geoArrays[0] = tetraRegular;
  180.     geoArrays[1] = tetraStrip;
  181.     geoArrays[2] = tetraIndexed;
  182.     geoArrays[3] = tetraIndexedStrip;
  183.     
  184.     shape = new Shape3D(tetraRegular, app);
  185.     shape.setCapability(Shape3D.ALLOW_GEOMETRY_WRITE);
  186.     shape.setCapability(Shape3D.ALLOW_GEOMETRY_READ);
  187.  
  188.     Transform3D t = new Transform3D();
  189.     // move the object upwards
  190.     t.set(new Vector3f(0.0f, 0.3f, 0.0f));
  191.  
  192.     // rotate the shape
  193.     Transform3D temp = new Transform3D();
  194.         temp.rotX(Math.PI/4.0d);
  195.     t.mul(temp);
  196.         temp.rotY(Math.PI/4.0d);
  197.         t.mul(temp);
  198.     
  199.     // Shrink the object 
  200.     t.setScale(0.6);
  201.  
  202.     TransformGroup trans = new TransformGroup(t);
  203.     trans.setCapability(TransformGroup.ALLOW_TRANSFORM_WRITE);
  204.     trans.setCapability(TransformGroup.ALLOW_TRANSFORM_READ);
  205.  
  206.     objRoot.addChild(trans);
  207.     trans.addChild(shape);
  208.  
  209.     BoundingSphere bounds =
  210.         new BoundingSphere(new Point3d(0.0,0.0,0.0), 100.0);
  211.  
  212.     // Set up the global lights
  213.     Color3f lColor1 = new Color3f(0.7f, 0.7f, 0.7f);
  214.     Vector3f lDir1  = new Vector3f(-1.0f, -1.0f, -1.0f);
  215.     Color3f alColor = new Color3f(0.2f, 0.2f, 0.2f);
  216.  
  217.     AmbientLight aLgt = new AmbientLight(alColor);
  218.     aLgt.setInfluencingBounds(bounds);
  219.     DirectionalLight lgt1 = new DirectionalLight(lColor1, lDir1);
  220.     lgt1.setInfluencingBounds(bounds);
  221.     objRoot.addChild(aLgt);
  222.     objRoot.addChild(lgt1);
  223.     
  224.     // Let Java 3D perform optimizations on this scene graph.
  225.         objRoot.compile();
  226.  
  227.     return objRoot;
  228.     }
  229.  
  230.     JPanel createGeometryByReferencePanel() {
  231.     JPanel panel = new JPanel();
  232.     panel.setBorder(new TitledBorder("Geometry Type"));
  233.  
  234.     String values[] = {"Array", "Strip", "Indexed", "IndexedStrip"};
  235.     geomType = new JComboBox(values);
  236.     geomType.setLightWeightPopupEnabled(false);
  237.     geomType.addActionListener(this);
  238.     geomType.setSelectedIndex(0);
  239.     panel.add(new JLabel("Geometry Type"));     
  240.     panel.add(geomType);
  241.  
  242.  
  243.     String vertex_types[] = { "Float","P3F"};
  244.  
  245.     vertexType = new JComboBox(vertex_types);
  246.     vertexType.setLightWeightPopupEnabled(false);
  247.     vertexType.addActionListener(this);
  248.     vertexType.setSelectedIndex(0);
  249.     panel.add(new JLabel("VertexType"));     
  250.     panel.add(vertexType);
  251.  
  252.  
  253.     String color_types[] = { "Float","C3F"};
  254.  
  255.     colorType = new JComboBox(color_types);
  256.     colorType.setLightWeightPopupEnabled(false);
  257.     colorType.addActionListener(this);
  258.     colorType.setSelectedIndex(0);
  259.     panel.add(new JLabel("ColorType"));     
  260.     panel.add(colorType);
  261.     
  262.  
  263.  
  264.  
  265.     return panel;
  266.     }
  267.  
  268.     JPanel createUpdatePanel() {
  269.  
  270.     JPanel panel = new JPanel();
  271.     panel.setBorder(new TitledBorder("Other Attributes"));
  272.  
  273.     String updateComp[] = { "None","Geometry", "Color"};
  274.     
  275.     transparency = new JCheckBox("EnableTransparency", 
  276.                       false);
  277.     transparency.addActionListener(this);
  278.     panel.add(transparency);
  279.  
  280.  
  281.     updates = new JComboBox(updateComp);
  282.     updates.setLightWeightPopupEnabled(false);
  283.     updates.addActionListener(this);
  284.     updates.setSelectedIndex(0);
  285.     panel.add(new JLabel("UpdateData"));     
  286.     panel.add(updates);
  287.  
  288.     return panel;
  289.     }
  290.  
  291.     
  292.  
  293.     public GeometryByReferenceTest() {
  294.     }
  295.  
  296.     public void init() {
  297.     Container contentPane = getContentPane();
  298.     
  299.         Canvas3D c = new Canvas3D(SimpleUniverse.getPreferredConfiguration());
  300.         contentPane.add("Center", c);
  301.  
  302.         BranchGroup scene = createSceneGraph();
  303.         // SimpleUniverse is a Convenience Utility class
  304.         u = new SimpleUniverse(c);
  305.  
  306.     // add mouse behaviors to the viewingPlatform
  307.     ViewingPlatform viewingPlatform = u.getViewingPlatform();
  308.  
  309.         // This will move the ViewPlatform back a bit so the
  310.         // objects in the scene can be viewed.
  311.         viewingPlatform.setNominalViewingTransform();
  312.         u.addBranchGraph(scene);
  313.  
  314.     // add Orbit behavior to the ViewingPlatform
  315.     OrbitBehavior orbit = new OrbitBehavior(c, OrbitBehavior.REVERSE_ALL);
  316.     BoundingSphere bounds =
  317.         new BoundingSphere(new Point3d(0.0, 0.0, 0.0), 100.0);
  318.     orbit.setSchedulingBounds(bounds);
  319.     viewingPlatform.setViewPlatformBehavior(orbit);
  320.  
  321.     // Create GUI
  322.     JPanel p = new JPanel();
  323.     BoxLayout boxlayout = new BoxLayout(p, 
  324.                         BoxLayout.Y_AXIS);
  325.     p.add(createGeometryByReferencePanel());
  326.     p.add(createUpdatePanel());
  327.     p.setLayout(boxlayout);
  328.  
  329.     contentPane.add("South", p);
  330.     }
  331.  
  332.     public void destroy() {
  333.     u.cleanup();
  334.     }
  335.  
  336.     public void actionPerformed(ActionEvent e) {
  337.     Object target = e.getSource();
  338.     GeometryArray geo;
  339.     boolean setColor = false, setVertex = false;
  340.     if (target == geomType) {
  341.         geo = geoArrays[geomType.getSelectedIndex()];
  342.         // Set everything to null, and set it later ..
  343.         geo.setColorRefFloat(null);
  344.         geo.setColorRef3f(null);
  345.         geo.setCoordRefFloat(null);
  346.         geo.setCoordRef3f(null);
  347.         shape.setGeometry(geoArrays[geomType.getSelectedIndex()]);
  348.  
  349.         setColor = true;
  350.         setVertex= true;
  351.  
  352.         
  353.     } 
  354.     else if (target == transparency) {
  355.         if (transparency.isSelected()) {
  356.         transp.setTransparencyMode(TransparencyAttributes.BLENDED);
  357.         }
  358.         else {
  359.         transp.setTransparencyMode(TransparencyAttributes.NONE);
  360.         }
  361.  
  362.  
  363.     }
  364.     else if (target == updates) {
  365.         updateIndex = updates.getSelectedIndex();
  366.         if (updateIndex == 1) {
  367.         System.out.println("Doing coordinate update");
  368.         ((GeometryArray)(shape.getGeometry())).updateData(this);
  369.         }
  370.         else if (updateIndex == 2) {
  371.         System.out.println("Doing color update");
  372.         ((GeometryArray)(shape.getGeometry())).updateData(this);
  373.         }
  374.  
  375.     }
  376.     else if (target == vertexType) {
  377.         geo = ((GeometryArray)shape.getGeometry());
  378.         if (vertexIndex == 0) {
  379.         geo.setCoordRefFloat(null);
  380.         }
  381.         else if (vertexIndex == 1) {
  382.         geo.setCoordRef3f(null);
  383.         }
  384.         vertexIndex = vertexType.getSelectedIndex();
  385.         setVertex = true;
  386.     }
  387.     else if (target == colorType) {
  388.         geo = (GeometryArray) shape.getGeometry();
  389.         if (colorIndex == 0) {
  390.         geo.setColorRefFloat(null);
  391.         }
  392.         else if (colorIndex == 1) {
  393.         geo.setColorRef3f(null);
  394.         }
  395.         colorIndex = colorType.getSelectedIndex();
  396.         setColor = true;
  397.     }
  398.  
  399.     if (setVertex) {
  400.         geo = (GeometryArray) shape.getGeometry();
  401.         if (vertexIndex == 0) {
  402.         if (geo instanceof IndexedGeometryArray)
  403.             geo.setCoordRefFloat(indexedFloatVerts);
  404.         else
  405.             geo.setCoordRefFloat(floatVerts);
  406.         }
  407.         else if (vertexIndex == 1) {
  408.         if (geo instanceof IndexedGeometryArray)
  409.             geo.setCoordRef3f(indexedP3fVerts);
  410.         else
  411.             geo.setCoordRef3f(p3fVerts);
  412.         }
  413.  
  414.     }
  415.     if (setColor) {
  416.         geo = (GeometryArray) shape.getGeometry();
  417.         if (colorIndex == 0) {
  418.         if (geo instanceof IndexedGeometryArray)
  419.             geo.setColorRefFloat(indexedFloatClrs);
  420.         else
  421.             geo.setColorRefFloat(floatClrs);
  422.         }
  423.         else if (colorIndex == 1) {
  424.         if (geo instanceof IndexedGeometryArray)
  425.             geo.setColorRef3f(indexedC3fClrs);
  426.         else
  427.             geo.setColorRef3f(c3fClrs);
  428.         }
  429.     }
  430.  
  431.     }
  432.  
  433.  
  434.                
  435.     public static void main(String[] args) {
  436.     Frame frame = new MainFrame(new GeometryByReferenceTest(), 800, 800);
  437.     }
  438.                
  439.     public GeometryArray createGeometry (int type) {
  440.     GeometryArray tetra = null;
  441.     if (type == 1) {
  442.         tetra =new TriangleArray(12, 
  443.                      TriangleArray.COORDINATES|
  444.                      TriangleArray.COLOR_3|
  445.                      TriangleArray.BY_REFERENCE);
  446.         
  447.         tetra.setCoordRefFloat(floatVerts);
  448.         tetra.setColorRefFloat(floatClrs);
  449.  
  450.     }
  451.     else if (type == 2) {
  452.         tetra = new TriangleStripArray(12,
  453.                        TriangleStripArray.COORDINATES|
  454.                        TriangleStripArray.COLOR_3|
  455.                        TriangleStripArray.BY_REFERENCE,
  456.                        stripVertexCounts);
  457.         tetra.setCoordRefFloat(floatVerts);
  458.         tetra.setColorRefFloat(floatClrs);
  459.         
  460.     }
  461.     else if (type == 3) { // Indexed Geometry
  462.         tetra = new IndexedTriangleArray(4,
  463.                          IndexedTriangleArray.COORDINATES|
  464.                          IndexedTriangleArray.COLOR_3|
  465.                          IndexedTriangleArray.BY_REFERENCE,
  466.                          12);
  467.         tetra.setCoordRefFloat(indexedFloatVerts);
  468.         tetra.setColorRefFloat(indexedFloatClrs);
  469.         ((IndexedTriangleArray)tetra).setCoordinateIndices(0, indices);
  470.         ((IndexedTriangleArray)tetra).setColorIndices(0, indices);
  471.     }
  472.     else if (type == 4) { // Indexed strip geometry
  473.         tetra = new IndexedTriangleStripArray(4,
  474.                           IndexedTriangleStripArray.COORDINATES|
  475.                           IndexedTriangleStripArray.COLOR_3|
  476.                           IndexedTriangleStripArray.BY_REFERENCE,
  477.                           12,
  478.                           stripVertexCounts);
  479.         tetra.setCoordRefFloat(indexedFloatVerts);
  480.         tetra.setColorRefFloat(indexedFloatClrs);
  481.         ((IndexedTriangleStripArray)tetra).setCoordinateIndices(0, indices);
  482.         ((IndexedTriangleStripArray)tetra).setColorIndices(0, indices);
  483.     }
  484.  
  485.     if (tetra != null)
  486.         tetra.setCapability(GeometryArray.ALLOW_REF_DATA_WRITE);
  487.     return tetra;
  488.     }
  489.  
  490.     public void updateData(Geometry geometry) {
  491.     int i;
  492.     float val;
  493.  
  494.     
  495.     if (updateIndex == 1) { // geometry
  496.         // Translate the geometry by a small amount in x
  497.         vertexCount++;
  498.         if ((vertexCount &1) == 1)
  499.         val = 0.2f;
  500.         else
  501.         val = -0.2f;
  502.  
  503.         if (vertexIndex == 0) {
  504.         // Do Indexed geometry
  505.         for (i = 0; i < indexedFloatVerts.length; i+=3) {
  506.             indexedFloatVerts[i] += val;
  507.         }
  508.         // Do non-indexed float geometry
  509.         for (i = 0; i < floatVerts.length; i+=3) {
  510.             floatVerts[i] += val;
  511.         }
  512.         }
  513.         else {
  514.         // If p3f do each point only once
  515.         for (i = 0; i < indexedP3fVerts.length; i++) {
  516.             indexedP3fVerts[i].x += val;
  517.         }
  518.         }
  519.  
  520.     }
  521.     else if (updateIndex == 2) { // colors
  522.         colorCount++;
  523.         if ((colorCount & 1) == 1)
  524.         val = 0.4f;
  525.         else
  526.         val = -0.4f;
  527.         if (colorIndex == 0) {
  528.         // Do Indexed geometry
  529.         for (i = 0; i < indexedFloatClrs.length; i+=3) {
  530.             indexedFloatClrs[i] += val;
  531.         }
  532.         // Do non-indexed float geometry
  533.         for (i = 0; i < floatClrs.length; i+=3) {
  534.             floatClrs[i] += val;
  535.         }
  536.         }
  537.         else {
  538.         // If c3f do each point only once        
  539.         for (i = 0; i < indexedC3fClrs.length; i++) {
  540.             indexedC3fClrs[i].x += val;
  541.         }
  542.         }
  543.  
  544.     }
  545.  
  546.     }
  547. }
  548.